| Attributes |
| Name | Required | Request-time | Type | Description |
| id | false | true | java.lang.String | The HTML id attribute for this component |
| propertyLabel | false | true | java.lang.String | Text displayed as the label of this component in a property panel. The value is only used if the tag is nested inside a renderPropertyPanel tag |
| name | false | true | java.lang.String | The HTML name attribute for this component |
| required | false | true | java.lang.String | Flag indicating that the user is required to provide a submitted value for this input component |
| value | false | true | java.lang.String | The contents of the text area |
| disabled | false | true | java.lang.String | Flag indicating that this element must never receive focus or be included in a subsequent submit |
| rows | false | true | java.lang.String | The height of the text area in rows |
| maxLength | false | true | java.lang.String | The maximum number of characters that can be typed into the textArea. Although textArea does not natively have a maxlength, our GUI component is validating this. |
| onblur | false | true | java.lang.String | Javascript code executed when this element loses focus |
| onchange | false | true | java.lang.String | Javascript code executed when this element loses focus and its value has been modified since gaining focus |
| onfocus | false | true | java.lang.String | Javascript code executed when this element receives focus |
| onselect | false | true | java.lang.String | Javascript code executed when text within this element is selected by the user |
| readonly | false | true | java.lang.String | Flag indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled |
| cols | false | true | java.lang.String | The width of the text area in columns |
| style | false | true | java.lang.String | CSS style(s) to be applied when this component is rendered. |
| styleClass | false | true | java.lang.String | Space-separated list of CSS style class(es) to be applied when this element is rendered. This value must be passed through as the "class" attribute on generated markup. |
| tabindex | false | true | java.lang.String | Position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. |